home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / exitwi4r / code.frm next >
Text File  |  1999-07-12  |  1KB  |  43 lines

  1. VERSION 5.00
  2. Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.1#0"; "RICHTX32.OCX"
  3. Begin VB.Form Form1 
  4.    Caption         =   "Code window"
  5.    ClientHeight    =   3240
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   5415
  9.    LinkTopic       =   "Form1"
  10.    MDIChild        =   -1  'True
  11.    ScaleHeight     =   3240
  12.    ScaleWidth      =   5415
  13.    WindowState     =   2  'Maximized
  14.    Begin RichTextLib.RichTextBox RichTextBox1 
  15.       Height          =   3255
  16.       Left            =   0
  17.       TabIndex        =   0
  18.       Top             =   0
  19.       Width           =   5415
  20.       _ExtentX        =   9551
  21.       _ExtentY        =   5741
  22.       _Version        =   327680
  23.       Enabled         =   -1  'True
  24.       ScrollBars      =   3
  25.       TextRTF         =   $"code.frx":0000
  26.    End
  27. End
  28. Attribute VB_Name = "Form1"
  29. Attribute VB_GlobalNameSpace = False
  30. Attribute VB_Creatable = False
  31. Attribute VB_PredeclaredId = True
  32. Attribute VB_Exposed = False
  33. Private Sub Command1_Click()
  34. l = getcommand(Text1.Text)
  35. Text2.Text = l
  36. End Sub
  37.  
  38. Private Sub Form_Resize()
  39. RichTextBox1.Width = Me.ScaleWidth
  40. RichTextBox1.Height = Me.ScaleHeight
  41. End Sub
  42.  
  43.